// OUTDOOR SECTION SCRIPT
//    Section: X = 1, Y = 1

// This is the special encounter script for this town.
// The states INIT_STATE and START_STATE have
// meanings that are described in the documenation. States you write
// yourself should be numbered from 10-100.

beginoutdoorscript;

variables;

short choice;

body;

beginstate INIT_STATE;
// This state called whenever this section is loaded into memory.
break;

beginstate START_STATE;
// Starting state of the section, called every turn the party 
// stands inside this section until you change the state.
break;

beginstate 10;
	if (get_flag(211, 0) == 0) {
		set_flag(211, 0, 1);
		message_dialog("The guard tower is currently unoccupied.", "A quick search yields nothing to aid in your quest.");
	}
break;
